home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / program / wx_lib10.zoo / wx_setty.c < prev    next >
C/C++ Source or Header  |  1992-08-01  |  277b  |  14 lines

  1. #include <wx_lib.h>
  2.  
  3. /*
  4.  * This is a simple utility function to keep a little orthagonality--it just
  5.  * sets the window's type.  You can do it by hand, but it looks better if it's
  6.  * function based.
  7.  */
  8. void    wx_settype(ws,t)
  9. Window    *ws;
  10. int        t;
  11. {
  12.     ws->type = t;
  13. }
  14.